home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Borland Plateform / Turbo Pascal V7.0 / DOCDEMO.ZIP / MINIMAL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-10-30  |  435 b   |  20 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Vision 2.0 Demo                        }
  4. {   Copyright (c) 1992 by Borland International  }
  5. {                                                }
  6. {************************************************}
  7.  
  8. program Minimal;
  9.  
  10. uses App;
  11.  
  12. var
  13.   MyApp: TApplication;
  14.  
  15. begin
  16.   MyApp.Init;
  17.   MyApp.Run;
  18.   MyApp.Done;
  19. end.
  20.